home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Alles Voor Internet / Tout Pour Internet
/
alles voor internet.iso
/
MacInternet™
/
Telnet
/
Minitel
/
netlogon.mt
< prev
next >
Wrap
Text File
|
1993-03-11
|
1KB
|
50 lines
{ netlogon.mt - perform logon to the infonet network videotex center }
{ send CRs until we get a response from the network }
loop 8
type CR
wait 8
case '#'
break
case '*'
branch reqService
endwait
at_end_do
message 'PAD not responding with #'
quit
endloop
{ request X.3 pad service }
type 'x' CR
wait 100
case '*' { success }
{ do nothing }
failure
message 'PAD not responding with *'
quit
endwait
reqService: { request connection to VCC }
type '.ms' CR
{ wait for connection }
wait 600
case '......' { wait till the userid prompt }
{ send userid if present }
if userid then
type userid NEXT { send network userid/password }
{ send password if present }
if password then
pause 12
type password SEND
endif
endif
case 'CLR', 'ERR'
message 'Unable to connect to network service'
failure { timeout or line dropped }
message 'User ID prompt not received'
endwait
end